Go Back   Yahoo Booters And Yahoo Tools > The Guardians > Coding Help

Coding Help You need help coding a 'Security Application'? Ask for help in here.



Welcome to the VipraSys forums.

You are currently viewing our boards as a guest which gives you limited access to view most discussions and access our other features such as download links. By joining our free community you will have access to post topics, communicate privately with other members (PM), respond to polls, upload content and access many other special features. Registration is fast, simple and absolutely free so please, Register Now by clicking here!

Post New Thread  Reply
 
LinkBack Thread Tools Display Modes
Old 03-29-2008, 06:52 PM   #1 (permalink)
in search of VAMPIRESS
 
__BLooDsuCkeR__'s Avatar
 
Join Date: Jan 2008
Location: in ur nightmares
Posts: 4,300

Thanks: 330
Thanked 1,378 Times in 837 Posts
Reputation: 16002
__BLooDsuCkeR__ has a reputation beyond repute__BLooDsuCkeR__ has a reputation beyond repute__BLooDsuCkeR__ has a reputation beyond repute__BLooDsuCkeR__ has a reputation beyond repute__BLooDsuCkeR__ has a reputation beyond repute__BLooDsuCkeR__ has a reputation beyond repute__BLooDsuCkeR__ has a reputation beyond repute__BLooDsuCkeR__ has a reputation beyond repute__BLooDsuCkeR__ has a reputation beyond repute__BLooDsuCkeR__ has a reputation beyond repute__BLooDsuCkeR__ has a reputation beyond repute
Send a message via Yahoo to __BLooDsuCkeR__
Question Login Module

hey this is for coders out der
or any1 who can help me find this files

i need two files..

i m a newbie at this coding stuff
i need two files
plz help me out if u can

LoginModule.bas
BootPackets.bas

so plz help me if u can
thnk u all
__BLooDsuCkeR__ is online now  
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
Old 03-29-2008, 09:59 PM   #2 (permalink)
-Destroyer-Messy-
 
destroyer_messy's Avatar
 
Join Date: Mar 2008
Location: Puerto Rico
Posts: 82

Thanks: 102
Thanked 83 Times in 33 Posts
Reputation: 2
destroyer_messy is an unknown quantity at this point
Send a message via MSN to destroyer_messy Send a message via Yahoo to destroyer_messy
Default Re: Login Module

'LoginModule Here.....
'By: -Destroyer-Messy-
'Declarations
Const Ver As Integer = 12
Const Name As String = "YMSG"
Private Declare Function YMSG12_ScriptedMind_Encrypt Lib "YMSG12ENCRYPT.dll" (ByVal username As String, ByVal Password As String, ByVal Seed As String, ByVal result_6 As String, ByVal result_96 As String, intt As Long) As Boolean
'-/-------
'Functions
'-/-------
Public Function GetStrings(YahooID As String, YahooPass As String, Seed As String, Str1 As String, Str2 As String, Mode As Long) As Boolean
Dim A(1) As String, B As Long
On Error GoTo err
A(0) = String(80, vbNullChar)
A(1) = String(80, vbNullChar)
GetStrings = YMSG12_ScriptedMind_Encrypt(YahooID, YahooPass, Seed, A(0), A(1), Mode)
B = InStr(1, A(0), vbNullChar)
Str1 = Left$(A(0), B - 1)
B = InStr(1, A(1), vbNullChar)
Str2 = Left$(A(1), B - 1)
Exit Function
err:
GetStrings = False
End Function
'-/-------
'The Define ANd Configure The Header Of The Packet
Public Function Header(ByVal PacketType As String, ByVal pck As String) As String
Dim i As Integer
Dim X As Integer
X = 0
i = Len(pck)
Do While i > 255
i = i - 256
X = X + 1
Loop
Header = Name & Chr(0) & Chr(Ver) & String(2, 0) & Chr(X) & Chr(i) & Chr(0) & Chr("&H" & PacketType) & String(8, 0) & pck
Debug.Print Header
End Function
'-/-------
'Login Function
Public Function Login(YahooID As String) As String
Dim pck As String
pck = "6" & Crypt(0) & "96" & Crypt(1) & "0" & YahooID & "2" & YahooID & "192-1211" & YahooID & "99beta1356,0,0,155514830059B04um3 lh08ql2q&b=259"
Login = Header("54", pck)
End Function
'-/-------
'Gets The Login Key...
Public Function Get_Key(YahooID As String) As String
Dim pck As String
pck = "1À€" & YahooID & "À€"
Get_Key = Header("57", pck)
End Function
'-/-------
'Custom Pause Function Used To Slow Things Down
Public Function Pause(interval)
Dim atime
atime = Timer
Do While Timer - atime < Val(interval)
DoEvents
Loop
End Function
'-/-
'Download Link >> [Only registered users can see links. ]

Last edited by destroyer_messy : 03-29-2008 at 10:02 PM.
destroyer_messy is offline  
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
The Following 2 Users Say Thank You to destroyer_messy For This Useful Post:
saswata (04-03-2008), __BLooDsuCkeR__ (03-30-2008)
Old 03-31-2008, 04:23 PM   #3 (permalink)
-Destroyer-Messy-
 
destroyer_messy's Avatar
 
Join Date: Mar 2008
Location: Puerto Rico
Posts: 82

Thanks: 102
Thanked 83 Times in 33 Posts
Reputation: 2
destroyer_messy is an unknown quantity at this point
Send a message via MSN to destroyer_messy Send a message via Yahoo to destroyer_messy
Default Re: Login Module

Boot-Packets-Here..... (Basic Boots packets use to learn)

[Only registered users can see links. ]
destroyer_messy is offline  
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
The Following User Says Thank You to destroyer_messy For This Useful Post:
saswata (04-03-2008)
Old 04-03-2008, 06:35 PM   #4 (permalink)
VipraSys Addict
 
saswata's Avatar
 
Join Date: Dec 2007
Location: India
Posts: 114

Thanks: 327
Thanked 72 Times in 37 Posts
Reputation: 305
saswata is a jewel in the roughsaswata is a jewel in the roughsaswata is a jewel in the roughsaswata is a jewel in the rough
Default Re: Login Module

bro plz update the new patched login module..thanx in advance..
saswata is offline  
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
Old 04-03-2008, 08:01 PM   #5 (permalink)
-Destroyer-Messy-
 
destroyer_messy's Avatar
 
Join Date: Mar 2008
Location: Puerto Rico
Posts: 82

Thanks: 102
Thanked 83 Times in 33 Posts
Reputation: 2
destroyer_messy is an unknown quantity at this point
Send a message via MSN to destroyer_messy Send a message via Yahoo to destroyer_messy
Default Re: Login Module

Quote:
Originally Posted by saswata View Post
bro plz update the new patched login module..thanx in advance..</